body {
  background-image: url("/assets/cork.png");
  background-size: cover;
  background-repeat: repeat;
  display: flex;
  justify-content: center;
  margin: 33vh 0 10vh 5vw;
}

a {
  color: black;
  text-decoration: underline black;
}

a:hover {
  text-decoration: underline wavy red;
}

button {
  border: 1px solid black;
  height: 30px;
  width: 100px;
  text-align: left;
  border-radius: 5px 0 0 5px;
  transition: .3s ease;
  font-family: architects daughter;
  background-color: rgba(255, 255, 255, 0.5);
}

button:hover {
  cursor: help;
  background-color: rgba(255, 255, 255, 0.75);
}

a:hover {
  cursor: help;
}

summary {
  display: block;
  text-decoration: underline;
}

summary:hover {
  cursor: help;
  text-decoration: underline wavy;
}

summary:focus {
  text-decoration: underline wavy red;
}

summary::before {
  margin-right: 1ch;
  display: inline-block;
  content: '+';
  transition: .3s ease;
}

details[open]>summary::before {
  transform: rotate(90deg);
}

.image {
  position: relative;
  align-self: flex-end;

}

#img1 {
  transform: rotate(5deg);
  z-index: 1;
  top: 25px;
  right: 65px;
}

#img2 {
  transform: rotate(-5deg);
  z-index: 0;
  top: 15px;
  right: 250px;
}

.tabs {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.5));
  transform: scale(1.2);
}

[role="tablist"] {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1;
  top: 20px;
  left: 35px;
}

#tab-1 {
  background-color: rgba(87, 188, 255, 0.5);
}

#tab-1:hover {
  background-color: rgba(87, 188, 255, 0.75);
}

#tab-2 {
  background-color: rgba(245, 122, 183, 0.5);
}

#tab-2:hover {
  background-color: rgba(245, 122, 183, 0.75);
}

#tab-3 {
  background-color: rgba(125, 248, 145, 0.5);
}

#tab-3:hover {
  background-color: rgba(125, 248, 145, 0.75);
}

[role="tabpanel"] {
  position: relative;
  width: 450px;
  height: 250px;
  background: url("/assets/paper.jpg");
  z-index: 0;
  box-sizing: border-box;
  padding: 0 10px 0 45px;
  border: 1px solid black;
  font-family: architects daughter;
  overflow: scroll;
  scrollbar-width: none;
}

#panel-2 {
  transform: rotate(-2deg);
}

#panel-3 {
  transform: rotate(2deg);
}